home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / internet / irc_i_dodatki / kuang / kuangeleven28.lha / Rexx / Pub / modes.AMIRX < prev    next >
Text File  |  1997-02-06  |  561b  |  25 lines

  1. /* Kuang 11 Public Channel Plugin - Remote Modes
  2.    Works only in autochannels.
  3.  
  4.    To install add following commands
  5.    VOICE
  6.    UNVOICE
  7.    OP
  8. */
  9. options results
  10. parse arg nick channel pxf pxt imop autochan text
  11. if ~imop|~autochan then exit
  12. "GETMYNICK"
  13. mynick=result
  14. parse var text command target args
  15. upper command
  16. if target='-' then target=''
  17. select
  18.     when command='VOICE' then mod('+v' nick)
  19.     when command='UNVOICE' then mod('-v' nick)
  20.     When command='OP' then if pos('O',pxf)~=0 then mod('+o' nick)
  21. otherwise
  22. end
  23. exit
  24. mod:;'RAW MODE' channel arg(1);return 0
  25.